mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
aspeed: First batch of driver changes for v7.2
Whilebc13f14f5c("soc: aspeed: cleanup dead default for ASPEED_SOCINFO") was committed just now it has been in -next for a while as b333a0f1c857411d83a02aa6f1d9ecc7666d6179. The commit is fresh as I moved it between branches. Other than that it's just the one other patch from Krzysztof tidying up the location of MODULE_DEVICE_TABLE(). -----BEGIN PGP SIGNATURE----- iJIEABYKADoWIQSoUT1x3bOSX/nAa8ajM9GZTrjhpgUCah+GbhwcYW5kcmV3QGNv ZGVjb25zdHJ1Y3QuY29tLmF1AAoJEKMz0ZlOuOGmMwoBAISxLClOnFAZT7MmKB2b ixwjF31YoixIG45zDwC0t+8EAP9dMNq0apbHh19RHqDrfFsrYTGjs/FoAUG/J/sG TwXKBg== =QHRt -----END PGP SIGNATURE----- Merge tag 'aspeed-7.2-drivers-0' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/bmc/linux into soc/drivers aspeed: First batch of driver changes for v7.2 Whilebc13f14f5c("soc: aspeed: cleanup dead default for ASPEED_SOCINFO") was committed just now it has been in -next for a while as b333a0f1c857411d83a02aa6f1d9ecc7666d6179. The commit is fresh as I moved it between branches. Other than that it's just the one other patch from Krzysztof tidying up the location of MODULE_DEVICE_TABLE(). * tag 'aspeed-7.2-drivers-0' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/bmc/linux: soc: aspeed: cleanup dead default for ASPEED_SOCINFO soc: aspeed: Move MODULE_DEVICE_TABLE next to the table itself Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
This commit is contained in:
commit
9f2f61e336
|
|
@ -46,7 +46,6 @@ config ASPEED_P2A_CTRL
|
|||
|
||||
config ASPEED_SOCINFO
|
||||
bool "ASPEED SoC Information driver"
|
||||
default ARCH_ASPEED
|
||||
select SOC_BUS
|
||||
default ARCH_ASPEED
|
||||
help
|
||||
|
|
|
|||
|
|
@ -338,6 +338,7 @@ static const struct of_device_id aspeed_lpc_ctrl_match[] = {
|
|||
{ .compatible = "aspeed,ast2600-lpc-ctrl" },
|
||||
{ },
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, aspeed_lpc_ctrl_match);
|
||||
|
||||
static struct platform_driver aspeed_lpc_ctrl_driver = {
|
||||
.driver = {
|
||||
|
|
@ -350,7 +351,6 @@ static struct platform_driver aspeed_lpc_ctrl_driver = {
|
|||
|
||||
module_platform_driver(aspeed_lpc_ctrl_driver);
|
||||
|
||||
MODULE_DEVICE_TABLE(of, aspeed_lpc_ctrl_match);
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Cyril Bur <cyrilbur@gmail.com>");
|
||||
MODULE_DESCRIPTION("Control for ASPEED LPC HOST to BMC mappings");
|
||||
|
|
|
|||
|
|
@ -366,6 +366,7 @@ static const struct of_device_id aspeed_lpc_snoop_match[] = {
|
|||
.data = &ast2500_model_data },
|
||||
{ },
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, aspeed_lpc_snoop_match);
|
||||
|
||||
static struct platform_driver aspeed_lpc_snoop_driver = {
|
||||
.driver = {
|
||||
|
|
@ -378,7 +379,6 @@ static struct platform_driver aspeed_lpc_snoop_driver = {
|
|||
|
||||
module_platform_driver(aspeed_lpc_snoop_driver);
|
||||
|
||||
MODULE_DEVICE_TABLE(of, aspeed_lpc_snoop_match);
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Robert Lippert <rlippert@google.com>");
|
||||
MODULE_DESCRIPTION("Linux driver to control Aspeed LPC snoop functionality");
|
||||
|
|
|
|||
|
|
@ -416,6 +416,7 @@ static const struct of_device_id aspeed_p2a_ctrl_match[] = {
|
|||
.data = &ast2500_model_data },
|
||||
{ },
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, aspeed_p2a_ctrl_match);
|
||||
|
||||
static struct platform_driver aspeed_p2a_ctrl_driver = {
|
||||
.driver = {
|
||||
|
|
@ -428,7 +429,6 @@ static struct platform_driver aspeed_p2a_ctrl_driver = {
|
|||
|
||||
module_platform_driver(aspeed_p2a_ctrl_driver);
|
||||
|
||||
MODULE_DEVICE_TABLE(of, aspeed_p2a_ctrl_match);
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Patrick Venture <venture@google.com>");
|
||||
MODULE_DESCRIPTION("Control for aspeed 2400/2500 P2A VGA HOST to BMC mappings");
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user